home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / OVERLAY / OVRUMB12 / OVR2.PAS < prev    next >
Pascal/Delphi Source File  |  1994-09-15  |  240b  |  18 lines

  1. {$A-,B-,D+,E-,F+,G-,I+,L+,N-,O+,P-,Q-,R+,S+,T+,V-,X-,Y+}
  2. unit ovr2;
  3.  
  4.   {example overlay unit for OvrTest}
  5.  
  6. interface
  7.  procedure Proc2;
  8.  
  9.  var Q2:^string;
  10.  
  11.  implementation
  12.  
  13.  procedure Proc2;
  14.  begin
  15.   writeln(Q2^);
  16.  end;
  17.  
  18. end.